tuples in python

30

# tuples are immutable

# initialize tuple
scores = (10, 20, 30)

# check if 10 is in scores tutple
print(10 in scores)

# print all scores in tuple
for score in scores:
    print(scores)

# print length of tuple
print(len(scores))

# print scores reversed
print(tuple(reversed(scores)))

# print scores reversed
print(scores[::-1])

# print first score by index
print(scores[0])

# print first two scores
print(scores[0:2])

# print tuple
thistuple = ("apple",)
print(type(thistuple))

#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
# Creating a Tuple with
# the use of Strings
Tuple = ('Geeks', 'For')
print("\nTuple with the use of String: ")
print(Tuple)
      
# Creating a Tuple with
# the use of list
list1 = [1, 2, 4, 5, 6]
print("\nTuple using List: ")
Tuple = tuple(list1)
  
# Accessing element using indexing
print("First element of tuple")
print(Tuple[0])
  
# Accessing element from last
# negative indexing
print("\nLast element of tuple")
print(Tuple[-1])
  
print("\nThird last element of tuple")
print(Tuple[-3])
  strs = ['ccc', 'aaaa', 'd', 'bb']  print sorted(strs, key=len)  ## ['d', 'bb', 'ccc', 'aaaa']
 #the list will be sorted by the length of each argument

Comments

Submit
0 Comments